func net/http.http2asciiEqualFold
19 uses
net/http (current package)
h2_bundle.go#L66: func http2asciiEqualFold(s, t string) bool {
h2_bundle.go#L6936: if http2asciiEqualFold(k, "content-length") ||
h2_bundle.go#L6937: http2asciiEqualFold(k, "content-encoding") ||
h2_bundle.go#L6938: http2asciiEqualFold(k, "trailer") ||
h2_bundle.go#L6939: http2asciiEqualFold(k, "te") ||
h2_bundle.go#L6940: http2asciiEqualFold(k, "expect") ||
h2_bundle.go#L6941: http2asciiEqualFold(k, "host") {
h2_bundle.go#L8385: if vv := req.Header["Connection"]; len(vv) > 0 && (len(vv) > 1 || vv[0] != "" && !http2asciiEqualFold(vv[0], "close") && !http2asciiEqualFold(vv[0], "keep-alive")) {
h2_bundle.go#L9173: if http2asciiEqualFold(k, "host") || http2asciiEqualFold(k, "content-length") {
h2_bundle.go#L9177: } else if http2asciiEqualFold(k, "connection") ||
h2_bundle.go#L9178: http2asciiEqualFold(k, "proxy-connection") ||
h2_bundle.go#L9179: http2asciiEqualFold(k, "transfer-encoding") ||
h2_bundle.go#L9180: http2asciiEqualFold(k, "upgrade") ||
h2_bundle.go#L9181: http2asciiEqualFold(k, "keep-alive") {
h2_bundle.go#L9187: } else if http2asciiEqualFold(k, "user-agent") {
h2_bundle.go#L9200: } else if http2asciiEqualFold(k, "cookie") {
h2_bundle.go#L9728: if cs.requestedGzip && http2asciiEqualFold(res.Header.Get("Content-Encoding"), "gzip") {
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |